home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / FocusItr.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.2 KB  |  58 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _FOCUSITR_
  4. #define _FOCUSITR_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13.  
  14. interface  ODFocusSetIterator;
  15.  
  16. //=====================================================================================
  17. // Classes used by this interface
  18. //=====================================================================================
  19.  
  20.  
  21. //=====================================================================================
  22. // Class ODFocusSetIterator
  23. //=====================================================================================
  24.  
  25. interface ODFocusSetIterator : ODObject
  26. {
  27.    ODTypeToken First();
  28.  
  29.    ODTypeToken Next();
  30.  
  31.    ODBoolean IsNotComplete();
  32.  
  33.  
  34. #ifdef __SOMIDL__
  35.  
  36.     implementation
  37.     {
  38.         majorversion = 1; minorversion = 0;
  39.  
  40.         functionprefix = ODFocusSetIterator;
  41.     
  42.         override:
  43.             somUninit;
  44.             
  45.         releaseorder:
  46.             First,
  47.             Next,
  48.             IsNotComplete,
  49.             reserved1;
  50.  
  51.         
  52.     
  53.     };
  54. #endif //# __SOMIDL__
  55. };
  56.  
  57. #endif //# _FOCUSITR_
  58.